|
8086 bios interrupt 10h . 10h is a video interrupt, u can use the function 02h to set the position on the cursor in text mode.
INT 10 - VIDEO - SET CURSOR POSITION
AH = 02h
BH = page number
0-3 in modes 2&3
0-7 in modes 0&1
0 in graphics modes
DH = row (00h is top)
DL = column (00h is left)
SeeAlso: AH=03h,AH=05h,INT 60/DI=030Bh
if u are a beginner and need a sample code send me a mail
|